home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 7
/
BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso
/
Files
/
Tele
/
Pete Johnson
/
TExport 2.0<source>.cpt
/
TExportGlobals.p
< prev
Wrap
Text File
|
1991-06-19
|
709b
|
39 lines
unit Globals;
{ Created June 29, 1989, to organize global variables }
interface
const
NULL = chr(0);
CTLA = chr(1);
TAB = chr(9);
ENDLINE = chr(13);
SPACE = chr(32);
type
MyByte = byte;
OneString = STR255;
OneStringPtr = ^OneString;
OneStringHdl = ^OneStringPtr;
Section = record
Name: string;
Limit: longint;
Age: longint;
Number: integer;
Backup: boolean
end;
SectionPtr = ^Section;
SectionHandle = ^SectionPtr;
var
doneFlag: boolean;
HiStringNo, CurrentResFile: integer;
MyWindow: WindowPtr;
DateString, TimeString, TabbyStamp, CreatorType: str255;
ASCIIFilter, SilenceTwits, SectionCount: boolean;
implementation
end. { Globals unit }